;KnotMaker uses this file for determining which tile number to draw when
;the "Draw By Selecting Endpoints" drawing method is used.

;Think of each grid cell on the canvas as being divided into nine zones:
;-------------
;| 1 | 2 | 3 |
;|---|---|---|
;| 4 | 5 | 6 |
;|---|---|---|
;| 7 | 8 | 9 |
;-------------

;When the user clicks somewhere in a grid cell on the canvas (such as zone 2 of 
;that grid cell, as in the above diagram) and then clicks somewhere else in the 
;same grid cell (such as zone 8), then the program will determine which tile to draw.  
;In this example, the program will draw a vertical tile.

;The values on each line (below) are made up of a number, followed by a comma, followed 
;by a number.  The first number is the tile number which will be drawn based on the two 
;zones that the user clicked.  The second number always contains two digits, which are 
;the two zones that the user clicked (the smaller zone number followed by the bigger 
;zone number, such as "28" instead of "82").  

;Tiles which can't be drawn in this way (e.g. tiles 9-16) don't need to be included 
;in this file.

;Blank lines and lines beginning with a semi-colon (;) will be ignored by KnotMaker.

;Tail End tiles
1,58
2,57
3,45
4,15
5,25
6,35
7,56
8,59

;Straight tiles
17,28
18,46
19,19
20,37

;RightAngle Curve tiles
21,68
22,48
23,24
24,26
25,79
26,17
27,13
28,39

;Wide Curve tiles
29,18
30,38
31,34
32,49
33,29
34,27
35,67
36,16

;Sharp Curve tiles
37,89
38,78
39,47
40,14
41,12
42,23
43,36
44,69
